home *** CD-ROM | disk | FTP | other *** search
/ C & C++ Multimedia Cyber Classroom / C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso / src / fig11_18.jar / Ch11 / Fig11_18 / Fig11_18.cpp
C/C++ Source or Header  |  1997-10-29  |  338b  |  23 lines

  1. // fig11_18.cpp 
  2. // Demonstrating the width member function
  3. #include <iostream.h>
  4.  
  5. int main()
  6. {
  7.    int w = 4;
  8.    char string[ 10 ];
  9.  
  10.    cout << "Enter a sentence:\n";
  11.    cin.width( 5 );
  12.  
  13.    while ( cin >> string ) {
  14.       cout.width( w++ );
  15.       cout << string << endl;
  16.       cin.width( 5 );
  17.    }
  18.  
  19.    return 0;
  20. }
  21.  
  22.  
  23.